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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
nav {
/*    background: linear-gradient(135deg, #8b2f2f 0%, #6b1f1f 50%, #4a1515 100%);*/
/*    background: #B8860B;*/
    background: #401212;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.7rem 0;
/*    background: rgba(107, 31, 31, 0.98);*/
    background: #401212;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
/*    color: #4a1515;*/
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInLeft 0.8s ease;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-icon {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 30px;
    width: 40px;
    height: 40px;
/*    background: linear-gradient(135deg, #d4af37, #f4d03f);*/
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
/*    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);*/
}

.tagline {
    font-size: 0.85rem;
    animation: fadeInLeft 0.8s ease;
    color: #f5f5f5;
    font-weight: 300;
    letter-spacing: 0.5px;
    padding-left: 70px;

}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    animation: fadeInRight 0.8s ease;
}

.nav-links a {
/*    color: #f5f5f5;*/
    color: #B8860B;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4af37;    
    transition: all 0.3s;
    transform: translateX(-50%);
}

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

.nav-links a:hover {
    color: #F5EFD3;
}

/*.nav-links a.active {
  color: #fff; /* or your highlight color */
  /*border-bottom: 3px solid #E0B240; /* golden underline */
  /*font-weight: 600;
}*/


  .nav-links a.active {
    color: #fff;
    border-bottom: 3px solid #E0B240;
    font-weight: 600;
  }



/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #8b2f2f 0%, #6b1f1f 100%);
    padding: 2rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu ul li a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding-left: 1.5rem;
}

/*.mobile-menu ul li a.active {
  color: #fff; /* or your highlight color */
  /*border-bottom: 3px solid #E0B240; /* golden underline */
  /*font-weight: 600;
}*/

  .mobile-menu ul li a.active {
    color: #fff;
    border-bottom: 3px solid #E0B240;
    font-weight: 600;
  }



/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8b2f2f 0%, #6b1f1f 50%, #4a1515 100%);
    max-width: 100%;
    color: white;
    padding: 10rem 2rem 5rem;
    text-align: center;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s linear infinite;
}

.hero .hero-content p{
    color: #d4af37;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    color: #f5f5f5;
    animation: fadeInUp 1s ease 0.2s both;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease both;
}

.highlight-box:nth-child(1) { animation-delay: 0.3s; }
.highlight-box:nth-child(2) { animation-delay: 0.4s; }
.highlight-box:nth-child(3) { animation-delay: 0.5s; }

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.highlight-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.highlight-box:hover::before {
    transform: scaleX(1);
}

.highlight-box:hover::after {
    opacity: 1;
}

.highlight-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(135deg, #6b1f1f, #8b2f2f);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(107, 31, 31, 0.3);
    transition: all 0.3s;
}

.highlight-box:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.highlight-icon svg {
    width: 45px;
    height: 45px;
    fill: #d4af37;
}

.highlight-box h3 {
    color: #6b1f1f;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

/*.section-alt {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    margin: 0;
    max-width: 100%;
    padding: 5rem 2rem;
    position: relative;
}*/

.section-dark {
    background: linear-gradient(135deg, #6b1f1f 0%, #8b2f2f 50%, #6b1f1f 100%);
    color: white;
    margin: 0;
    max-width: 100%;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
/*    color: #6b1f1f;*/
    color: white;
    text-align: center;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.section-dark h2 {
/*    color: #d4af37;*/
    color: white;
}

/* About Content */

.core-values-accordion { padding:1.5rem; background:#fff; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.06); }
.core-values-accordion h3 { text-align:center; color:#7b1b1b; margin-bottom:1rem; }

.accordion .acc-item { border-top:1px solid #eee; }
.acc-btn {
  width:100%;
  text-align:left;
  padding:0.65rem 0.8rem;
  background:transparent;
  border:0;
  font-weight:700;
  color:#4a1010;
  font-size:0.98rem;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.acc-btn:after { content:'+'; font-weight:700; color:#b06b2e; }
.acc-btn[aria-expanded="true"]:after { content:'−'; }

.acc-panel { padding:0.6rem 0.8rem 1rem 0.8rem; color:#333; font-size:0.92rem; line-height:1.55; }
@media (min-width:992px) {
  .core-values-accordion { max-height:420px; overflow:auto; }  
}

.mission-accordion {
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.mission-accordion h3 {
  text-align: center;
  color: #7b1b1b;
  margin-bottom: 1rem;
}



#about {
    background: linear-gradient(135deg, #8b2f2f 0%, #6b1f1f 50%, #4a1515 100%);
    max-width: 100%;
    /*padding: 10rem 2rem 5rem;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;*/
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left-color: #d4af37;
}

.about-card h3 {
    color: #6b1f1f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.about-card p {
    color: #555;
    line-height: 1.8;
}

.edge-list {
    list-style: none;
    margin-top: 1rem;
}

.edge-list li {
    padding: 0.7rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
    transition: all 0.3s;
}

/*.edge-list li:hover {
    color: #6b1f1f;
    padding-left: 3rem;
}*/

.edge-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.5rem;
    transition: all 0.3s;
}

/*.edge-list li:hover:before {
    transform: scale(1.2);
}*/

/* Submenu Styles */
.has-submenu {
  position: relative;
}

/* Desktop submenu */
.submenu {
  display: none;
  position: absolute;
  background: #401212;
  list-style: none;
  padding: 0.4rem 0;
  top: 100%;
  left: 0;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: all 0.25s ease;
}

.has-submenu:hover {
    color: #fff;
    border-bottom: 3px solid #E0B240;
    font-weight: 600;
  }

/* Mobile submenu: stack inside parent */
@media (max-width: 768px) {
  .submenu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
  }
}

.submenu li a {
  display: block;
  color: #d4af37;
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, padding-left 0.3s;
}

.submenu li a:hover {
  background: rgba(212, 175, 55, 0.15);
  padding-left: 1.3rem;
  color: #fff;
}

.submenu {
  display: none; /* hide by default */
}

.has-submenu.active > .submenu {
  display: block; /* show when active */
}


/* --- Mobile submenu improvements --- */

/* row wrapper inside mobile menu so text and toggle align */
.mobile-menu .mobile-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* hide the desktop 'hover' caret (you already removed it) — keep for safety */
.has-submenu > a::after { content: none; }

/* submenu basics for mobile */
.mobile-menu .submenu {
  display: none; /* toggled by JS */
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.25rem 0 0.5rem 0.6rem; /* left padding for indentation */
  background: rgba(64,18,18,0.95);
  border-radius: 6px;
}

/* make submenu items nicely tappable */
.mobile-menu .submenu li a {
  display: block;
  padding: 0.55rem 0.6rem;
  text-decoration: none;
  color: #f5f5f5;
  font-size: 1rem;
  border-radius: 6px;
}

/* subtle hover/active for mobile items */
.mobile-menu .submenu li a:hover,
.mobile-menu .submenu li a:focus {
  background: rgba(212,175,55,0.12);
  color: #d4af37;
  outline: none;
}

/* toggle button (mobile only) */
.submenu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: #d4af37;
  font-weight: 700;
  font-size: 1.05rem;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s;
}

/* small press visual */
.submenu-toggle:active { transform: scale(0.96); }

/* toggle button hover in case user uses pointer on mobile emulator */
.submenu-toggle:hover { background: rgba(212,175,55,0.06); }

/* when expanded, show minus symbol */
.has-submenu.mobile-only.active > .mobile-link-row .submenu-toggle { content: "−"; }

/* we'll swap text with JS; keep visual alignment */
.mobile-menu .has-submenu .mobile-link-row a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  padding-right: 0.5rem; /* ensures space between text and button */
}

/* ensure global mobile sizes are respected */
@media (max-width: 768px) {
  .mobile-menu .submenu li a { font-size: 1rem; }
}


/* Founder Image */
.founder-image {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease;
}

.founder-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #d4af37;
    box-shadow: 0 8px 30px rgba(107, 31, 31, 0.3);
    transition: all 0.4s;
}

.founder-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    border-color: #6b1f1f;
}

.founder-image h3 {
    color: #6b1f1f;
    font-size: 1.8rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.founder-image p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-image img {
        width: 150px;
        height: 150px;
    }
    
    .founder-image h3 {
        font-size: 1.5rem;
    }
    
    .founder-image p {
        font-size: 1rem;
    }
    .tagline{
        padding-left: 104px;
    }
}

@media (max-width: 480px) {
    .founder-image img {
        width: 120px;
        height: 120px;
    }
    
    .founder-image h3 {
        font-size: 1.3rem;
    }
}


/* Founder Message */
#founder {
    background: linear-gradient(135deg, #8b2f2f 0%, #6b1f1f 50%, #4a1515 100%);
    max-width: 100%;
/*    color: white;*/
    }
.founder-image h3 {
        color: #EFBF04;
    }
.founder-image p {
        color: #ffffff;
    }
.founder-message {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 3.5rem;
    border-left: 6px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
    line-height: 2;
    color: #444;
    position: relative;
    transition: all 0.3s;
}

.founder-message:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    transform: scale(1.01);
}

.founder-message::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: Georgia, serif;
}

.founder-name {
    margin-top: 2rem;
    font-weight: 600;
    color: #6b1f1f;
    font-style: normal;
    font-size: 1.1rem;
}

/* Solutions Grid */
.solutions-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #f5f5f5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.solution-card h3 {
    color: #6b1f1f;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-number {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    font-weight: bold;
}

.solution-card h4 {
    color: #d4af37;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    font-weight: 500;
}

.solution-card p {
    color: #555;
    line-height: 1.8;
}

/* Why Us Grid */

#why-us{
    background: linear-gradient(135deg, #8b2f2f 0%, #6b1f1f 50%, #4a1515 100%);
    max-width: 100%;
}


.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #d4af37, #f4d03f);
    transition: height 0.4s;
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6b1f1f, #8b2f2f);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(107, 31, 31, 0.3);
    transition: all 0.3s;
}

.why-icon svg {
    width: 40px;
    height: 40px;
    fill: #d4af37;
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.why-content h3 {
    color: #6b1f1f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.challenge {
    background: linear-gradient(135deg, #ffe5e5, #ffd5d5);
    padding: 1rem;
    border-radius: 8px;
    color: #6b1f1f;
    font-weight: 500;
    margin: 1rem 0;
    border-left: 3px solid #8b2f2f;
}

.arrow {
    text-align: center;
    font-size: 2rem;
    color: #d4af37;
    margin: 1rem 0;
    font-weight: bold;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.solution {
    background: linear-gradient(135deg, #fff8e5, #fff0cc);
    padding: 1rem;
    border-radius: 8px;
    color: #6b1f1f;
    font-weight: 500;
    margin: 1rem 0;
    border-left: 3px solid #d4af37;
}

.value-badge {
    background: linear-gradient(135deg, #6b1f1f, #8b2f2f);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(107, 31, 31, 0.3);
}

/* Testimonial */
.testimonial {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    color: #444;
    line-height: 1.9;
    position: relative;
    transition: all 0.3s;
}

.testimonial:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.testimonial::before {
    content: '★★★★★';
    display: block;
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: normal;
}

/* Client Logos */
.client-logos {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 8px;
    overflow: hidden;
}

.client-logos h3 {
    color: #6b1f1f;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: 30s linear 0s infinite normal none running scroll-left;
/*    animation: scroll-left 30s linear infinite;*/
}

.client-logo-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.client-logo-item img {
    width: 140px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.client-logo-item img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logos:hover .logo-track {
    animation-play-state: paused;
}

/* Contact Section */
#contact{
    background: linear-gradient(135deg, #8b2f2f 0%, #6b1f1f 50%, #4a1515 100%);
    max-width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.contact-item h3 {
    color: #6b1f1f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-item p {
    color: #555;
    font-size: 1.1rem;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: #6b1f1f;
    text-decoration: underline;
}

/* Footer */
footer {
/*    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);*/
/*    background: #4A1616;*/
    background: #401212;
    color: white;
    text-align: center;
    padding: 2.5rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

footer p {
    color: #ccc;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    h2 {
        font-size: 2rem;
    }
    .highlight-box,
    .solution-card,
    .contact-item {
        padding: 2rem;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    z-index: 10000;
    transition: width 0.1s;
}

/* Contact Hero Section */
.contact-hero {
/*    background: linear-gradient(135deg, #6b1f1f 0%, #8b2f2f 50%, #6b1f1f 100%);*/
    background: linear-gradient(0deg, #8b2f2f 0%, #6b1f1f 50%, #4a1515 100%);
    max-width: 100%;
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact-hero p {
    font-size: 1.2rem;
    color: #f5f5f5;
    line-height: 1.8;
}

/* Professional Contact Form */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.professional-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #6b1f1f;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #6b1f1f, #8b2f2f);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(107, 31, 31, 0.3);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 31, 31, 0.4);
    background: linear-gradient(135deg, #8b2f2f, #6b1f1f);
}

.submit-btn svg {
    transition: transform 0.3s;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.contact-info-sidebar h3 {
    color: #6b1f1f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b1f1f, #8b2f2f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(107, 31, 31, 0.2);
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: #d4af37;
    fill: #d4af37;
}

.contact-info-item h4 {
    color: #6b1f1f;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-info-item p,
.contact-info-item a {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-item a {
    text-decoration: none;
    color: #d4af37;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: #6b1f1f;
}

.cta-box {
    background: linear-gradient(135deg, #6b1f1f, #8b2f2f);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
    color: white;
}

.cta-box h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.cta-box p {
    color: #f5f5f5;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.cta-link {
    display: inline-block;
    background: white;
    color: #6b1f1f;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    background: #d4af37;
    color: white;
}

/* Align multiple CTA buttons neatly */
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* LinkedIn-style variant */
/* Container for multiple CTA buttons */
.cta-box {
     display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;                /* Adds uniform space between buttons */
  justify-content: center;  /* Centers them nicely */
  margin-top: 1rem;         /* Adds a bit of breathing room from text */
}

/* Buttons already exist — make them consistent in layout */
.cta-link {
  display: inline-flex;     /* Helps align icons/text better */
  align-items: center;
  justify-content: center;
  gap: 0.4rem;              /* Adds small space if icons are added later */
  text-align: center;
}

@media (max-width: 480px) {
  .cta-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem; /* slightly tighter for small screens */
  }

  .cta-link {
    width: 100%;
    max-width: 280px; /* keeps buttons from stretching too wide */
  }
}


/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
}

.benefit-item h3 {
    color: #6b1f1f;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design - Enhanced for All Devices */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .highlights {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 0 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-sidebar {
        position: static;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
        padding-left: 30px;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 8rem 1.5rem 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .highlight-box {
        padding: 2rem;
    }
    
    /* Typography */
    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Sections */
    section {

        padding: 3rem 1.5rem;
    }
    
    .section-alt,
    .section-dark {
        padding: 3rem 1.5rem;
    }
    
    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    /* Solutions */
    .solutions-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .solution-card {
        padding: 2rem;
    }
    
    .solution-card h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Why Us Grid */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-card {
        padding: 2rem;
    }
    
    /* Founder Message */
    .founder-message {
        padding: 2.5rem;
    }
    
    .founder-message::before {
        font-size: 3rem;
        top: 10px;
        left: 10px;
    }
    
    /* Client Logos */
    .client-logos {
        padding: 2rem 1rem;
    }
    
    .client-logos h3 {
        font-size: 1.1rem;
    }
    
    .client-logo-item {
        min-width: 150px;
        padding: 1.5rem 1rem;
    }
    
    .client-logo-item img {
        width: 120px;
        height: 70px;
    }
    
    /* Contact Page */
    .contact-hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-wrapper,
    .contact-info-sidebar {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    /* Testimonial */
    .testimonial {
        padding: 2.5rem;
        font-size: 1.1rem;
    }
    
    /* Contact Info */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 2rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    /* Navigation */
    .logo {
        font-size: 1rem;
        gap: 0.3rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon img {
        width: 35px;
        height: 35px;
    }
    
    .tagline {
        font-size: 0.7rem;
        padding-left: 86px;
    }
    
    /* Hero */
    .hero {
        padding: 7rem 1rem 3rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
    }
    
    .highlight-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .highlight-box h3 {
        font-size: 1.2rem;
    }
    
    .highlight-box p {
        font-size: 0.95rem;
    }
    
    /* Typography */
    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    /* Sections */
    section {
        padding: 2.5rem 1rem;
    }
    
    .section-alt,
    .section-dark {
        padding: 2.5rem 1rem;
    }
    
    /* About */
    .about-card {
        padding: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .edge-list li {
        font-size: 0.95rem;
        padding-left: 2rem;
    }
    
    .edge-list li:before {
        font-size: 1.2rem;
    }
    
    /* Founder Message */
    .founder-message {
        padding: 2rem;
        line-height: 1.8;
    }
    
    .founder-message::before {
        font-size: 2.5rem;
    }
    
    .founder-name {
        font-size: 1rem;
    }
    
    /* Solutions */
    .solutions-intro {
        font-size: 1rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-card h3 {
        font-size: 1.2rem;
    }
    
    .solution-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .solution-card h4 {
        font-size: 1rem;
    }
    
    .solution-card p {
        font-size: 0.95rem;
    }
    
    /* Why Us */
    .why-card {
        padding: 1.5rem;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .why-content h3 {
        font-size: 1.2rem;
    }
    
    .challenge,
    .solution {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    .arrow {
        font-size: 1.5rem;
    }
    
    .value-badge {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }
    
    /* Client Logos */
    .client-logos {
        padding: 1.5rem 0.5rem;
    }
    
    .client-logo-item {
        min-width: 130px;
        padding: 1rem;
    }
    
    .client-logo-item img {
        width: 100px;
        height: 60px;
    }
    
    /* Testimonial */
    .testimonial {
        padding: 2rem;
        font-size: 1rem;
    }
    
    /* Contact Page */
    .contact-hero {
        padding: 5rem 1rem 2.5rem;
    }
    
    .contact-hero h1 {
        font-size: 1.5rem;
    }
    
    .contact-hero p {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper,
    .contact-info-sidebar {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .contact-info-sidebar h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-info-item h4 {
        font-size: 1rem;
    }
    
    .contact-info-item p,
    .contact-info-item a {
        font-size: 0.9rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .cta-box h4 {
        font-size: 1.2rem;
    }
    
    .cta-link {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    /* Contact Info Section */
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-item h3 {
        font-size: 1.3rem;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 1rem;
    }
    
    footer p {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .highlight-box,
    .about-card,
    .solution-card,
    .why-card {
        padding: 1.2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-sidebar {
        padding: 1.2rem;
    }
}


    #team {
      background: linear-gradient(135deg, #8b2f2f 0%, #6b1f1f 50%, #4a1515 100%);
      color: #fff;
      max-width: 100%;
      padding: 8rem 2rem 5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #team::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(212,175,55,0.1)"/></svg>');
      opacity: 0.25;
    }

    #team h1 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #d4af37;
      text-shadow: 0 2px 6px rgba(0,0,0,0.3);
      position: relative;
      margin-bottom: 1rem;
    }

    #team p {
      max-width: 700px;
      margin: 0 auto 4rem;
      color: #f5f5f5;
      line-height: 1.8;
      font-size: 1.15rem;
      position: relative;
    }

    .team-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
    }

    .team-card {

      background: rgba(255, 255, 255, 0.97);
      color: #333;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      transition: all 0.4s ease;
      position: relative;
       min-height: 350px;      /* ensures all cards have at least this height */
  display: flex;          /* allows content alignment */
  flex-direction: column; /* stack content vertically */

    }

    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 45px rgba(212, 175, 55, 0.25);
    }

/*    .team-image {
        padding: 0 50px;
        padding-right: 50px;
        padding-left: 50px;
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-bottom: 4px solid #d4af37;
      transition: transform 0.4s;
      border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: block; 

    }*/
.team-image {
  display: block;
  width: 100%;
  height: auto; /* you can make this responsive later */
  object-fit: cover;
  border-bottom: 4px solid #d4af37;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.4s;
  margin: 0 auto; /* optional centering */
}


    .team-card:hover .team-image {
      transform: scale(1.05);
    }

    .team-info {
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .team-name {
      color: #6b1f1f;
      font-weight: 700;
      font-size: 1.4rem;
      margin-bottom: 0.3rem;
    }

    .team-role {
      color: #d4af37;
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .team-bio {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.2rem;
      transition: max-height 0.4s ease;
    }

    .team-social a {
      display: inline-block;
      margin: 0 0.4rem;
      color: #6b1f1f;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }

    .team-social a:hover {
      color: #d4af37;
    }
/* Responsive */

@media (max-width: 1800px) {
  #team h1 {
    font-size: 2rem;
  }
  #team p {
    font-size: 1rem;
  }
  .team-image {
    padding: 5px 150px; /* shorthand for left and right padding */
    width: 100%;
    height: auto;
  }
}

@media (max-width: 950px) {
  #team h1 {
    font-size: 2rem;
  }
  #team p {
    font-size: 1rem;
  }
  .team-image {
    padding: 5px 100px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 650px) {
  #team h1 {
    font-size: 2rem;
  }
  #team p {
    font-size: 1rem;
  }
  .team-image {
    padding: 5px 50px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  #team {
    padding: 6rem 1rem 3rem;
  }
  .team-card {
    padding: 1rem;
  }
  .team-image {
    padding: 5px 50px;
    width: 100%;
    height: 250px;
  }
}
