* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  scroll-behavior: smooth;
}

:root {
  --primary: #273246;
  --primary-dark: #273246;
  --secondary: #273246;
  --text-dark: #273246;
  --text-light: #64748b;
  --background: #f4f7fa;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-light: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

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

/* Navbar Styles */
/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 5%;
  background-color: #273246;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}



.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* Remove the filter that was making it white */
}

.logo h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  /* color: rgb(10, 10, 10); */
  transition: transform 0.5s ease;
}


/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: rgba(59, 130, 246, 0.05);
  color: var(--primary);
}

.container h2{
  text-align: center;
  margin-bottom: 30px;
}
/* res */
/* Default desktop styles */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive styles */
@media (max-width: 1010px) {
  .hamburger {
    display: block;
    z-index: 1101;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    max-height: 80vh;         /* Add this */
    overflow-y: auto; 
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    color: #273246;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: white;
    padding-left: 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}


/*  hero */

.hero-section {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  flex-wrap: wrap;
  background:#26365a;
  background: url('../images/about_comany.webp')center center/cover no-repeat;
  height:100vh;
}

.hero-content {
  flex: 1 1 50%;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color:white;
}

.hero-content h1 span {
  color: rgb(231, 76, 60);
}

.hero-content p {
  font-size: 16px;
  color: white;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: rgb(231, 76, 60);
  color: #fff;
}

.btn-primary:hover {
  background-color: #273246;
}

.btn-secondary {
  border: 2px solid #273246;
  color: #273246;
  background-color: white;
}

.btn-secondary:hover {
  background-color: #273246;
  color: #fff;
}

.hero-image {
  flex: 1 1 40%;
  position: relative;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
}

.badge {
  position: absolute;
  background: white;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  width: 120px;
}

.badge strong {
  font-size: 16px;
  color: #1e3a8a;
}

.badge.top-left {
  top: 10%;
  left: 15%;
}

.badge.top-right {
  top: 10%;
  right: -15%;
}

.badge.bottom {
  bottom: 10%;
  left: 25%;
  transform: translateX(-50%);
}


/*product offering*/
.products-section {
  padding: 60px 20px;
  background-color: #f4f8fb;
  text-align: center;
}

.products-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Responsive grid container */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

/* Card styling */
.card {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease-in-out;
}

.card::before,
.card::after {
  content: '';
  position: absolute;
  z-index: 1;
  transition: transform 0.4s ease;
}

.card::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #273246, #00aaff);
  transform: scaleX(0);
  transform-origin: left;
}

.card::after {
  bottom: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #273246, #00aaff);
  transform: scaleY(0);
  transform-origin: bottom;
}

/* Hover effects */
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover::after {
  transform: scaleY(1);
}

/* Card content */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-sizing: border-box;
}

.card-content h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.card-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Info section inside card */
.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.info span {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
}

/* Button styling */
.button {
  width: 100%;
  padding: 12px;
  background: white;
  color: black;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.button:hover {
  background: #f1f1f1;
}

/* Responsive Typography & Sizing */
@media (max-width: 1024px) {
  .products-title {
    font-size: 28px;
  }
  .card {
    height: 400px;
  }
  .card-content h2 {
    font-size: 20px;
  }
  .card-content p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .products-title {
    font-size: 24px;
  }
  .card {
    height: 380px;
  }
  .card-content h2 {
    font-size: 18px;
  }
  .card-content p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .products-title {
    font-size: 20px;
  }

  .card-container {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .card {
    height: 350px;
  }

  .card-content {
    padding: 15px;
  }

  .card-content h2 {
    font-size: 16px;
  }

  .card-content p {
    font-size: 12px;
  }

  .button {
    font-size: 14px;
    padding: 10px;
  }

  .info span {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/*equity products*/
.equity-products-section {
  padding: 60px 20px;
  background: #f4f7fa;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a2a4a;
  margin-bottom: 40px;
}

.equity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.equity-card {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.equity-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.equity-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.equity-card:hover::before {
  transform: scaleX(1);
}

.equity-card:hover::after {
  transform: scaleY(1);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e0f0ff;
  color: #0077cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.equity-card h3 {
  font-size: 18px;
  color: #0d3c61;
  margin-bottom: 10px;
}

.equity-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* ✅ Tablet Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .equity-card {
    padding: 20px;
  }

  .equity-card h3 {
    font-size: 17px;
  }

  .equity-card p {
    font-size: 14px;
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .equity-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .equity-card {
    padding: 18px 15px;
  }

  .equity-card h3 {
    font-size: 16px;
  }

  .equity-card p {
    font-size: 13.5px;
  }
}

/*fixed-income product*/
.fixed-income-section {
  background: #f4f7fa;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #0a2a4a;
  font-weight: bold;
  margin-bottom: 40px;
}

.income-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.income-card {
  background: #ffffff;
  border: 1px solid #e5ecf1;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.income-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.income-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.income-card:hover::before {
  transform: scaleY(1);
}

.income-card:hover::after {
  transform: scaleX(1);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e8f1ff;
  color: #0070cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.income-card h3 {
  font-size: 18px;
  color: #0c2d52;
  margin-bottom: 10px;
}

.income-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* ✅ Responsive for phones */
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .income-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .income-card {
    padding: 18px 12px;
  }

  .income-card h3 {
    font-size: 16px;
  }

  .income-card p {
    font-size: 13px;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/*insurance section*/
.insurance-section {
  background: #f4f7fa;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #1c2b4a;
  font-weight: 700;
  margin-bottom: 40px;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.insurance-card {
  background: #ffffff;
  border: 1px solid #dde6f0;
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.insurance-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.insurance-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.insurance-card:hover::before {
  transform: scaleY(1);
}

.insurance-card:hover::after {
  transform: scaleX(1);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #dceeff;
  color: #0073cf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.insurance-card h3 {
  font-size: 20px;
  color: #1b3a60;
  margin-bottom: 10px;
}

.insurance-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* ✅ Tablet responsiveness */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .insurance-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .insurance-card {
    padding: 20px 16px;
  }

  .insurance-card h3 {
    font-size: 18px;
  }

  .insurance-card p {
    font-size: 14px;
  }

  .icon-circle {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

/* ✅ Mobile responsiveness */
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .insurance-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .insurance-card {
    padding: 18px 12px;
  }

  .insurance-card h3 {
    font-size: 16px;
  }

  .insurance-card p {
    font-size: 13px;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.text {
  text-align: center;

}

/*Loan Product*/
.internship-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.tab-sidebar {
  flex: 0 0 250px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.tab-buttons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-buttons li {
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.tab-buttons li:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tab-buttons li.active {
  background: rgba(255, 255, 255, 0.2);
}

.tab-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.tab-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: opacity 0.3s ease;
  object-fit: cover;
}

.tab-text {
  padding: 30px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .internship-container {
    flex-direction: column;
    margin: 30px auto;
  }

  .tab-sidebar {
    flex: 100%;
  }

  .tab-main {
    flex-direction: column;
  }

  .tab-image img {
    height: 250px;
  }

  .tab-text {
    padding: 20px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .loan-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .loan-card {
    padding: 20px;
  }

  .loan-card h3 {
    font-size: 18px;
  }

  .loan-card p {
    font-size: 14px;
  }

  .product-grid {
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .product-card {
    padding: 20px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .internship-container {
    margin: 20px auto;
  }

  .tab-image img {
    height: 200px;
  }

  .tab-text {
    padding: 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .loan-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .loan-card {
    padding: 18px 15px;
  }

  .loan-card h3 {
    font-size: 16px;
  }

  .loan-card p {
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .product-card {
    padding: 15px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .product-card p {
    font-size: 13px;
  }
}

/*Other Product*/

.other-products-section {
  padding: 60px 20px;
  background-color: #f4f7fa;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  color: #2a2a72;
  margin-bottom: 40px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  /* border-left: 6px solid #4a90e2; */
  border-radius: 10px;
  padding: 25px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  z-index: 1;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover::after {
    transform: scaleY(1);
}

.product-card h3 {
  font-size: 20px;
  color: #1f2f56;
  margin-bottom: 10px;
}

.product-card i {
  color: #4a90e2;
  margin-right: 10px;
}

.product-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* ✅ Tablet responsiveness */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .product-grid {
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .product-card {
    padding: 20px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card p {
    font-size: 14px;
  }
}

/* ✅ Mobile responsiveness */
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    padding: 18px 15px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .product-card p {
    font-size: 13px;
  }
}

/* Contact section */
.contact-container {
  text-align: center;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  background: #f8fafa;
  border-radius: 8px;
  max-width: 100%px;
  margin: 0 auto;
}

.contact-container h2 {
  color: #273246;
  margin-bottom: 10px;
}

.contact-container p {
  color: #273246;
  margin-bottom: 25px;
}

.contact-btn {
  display: inline-block;
  background: #273246;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
  background: #273246;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}




/* Contact Section 
.contact-section {
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    background-color: var(--light-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
}

.contact-info {
    padding: var(--spacing-xl);
    background-color: var(--primary-color);
    color: var(--white);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.info-item svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

.info-item h3 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all var(--transition-normal);
}

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

.contact-form {
    padding: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
} */

/* Footer Section */

footer {
  background: #273246;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 0 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-width: 160px;
  max-width: 280px;
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}


.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color:orangered;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-col:first-child {
  padding-right: 30px;
}

.footer-col p {
  word-wrap: break-word;
  /* white-space: pre-line; */
  line-height: 1.6;
  font-size: 14px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  border: 1px solid #555;
  border-radius: 50%;
  padding: 8px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
}

/* Newsletter */
.newsletter-col {
  max-width: 280px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 280px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 10px 15px;
  background: #e74c3c;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 0 3px 3px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-top: 30px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1165px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 10px;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: none;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    margin-bottom: 10px;
  }
}


/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Glassmorphism Elements */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 50px;
    }

    .hero-image {
        padding-left: 0;
    }

    .director-message {
        flex-direction: column;
    }

    .director-image {
        max-width: 100%;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 992px) {
    .hero-section{
      height: 60vh;
    }
    .container {
        max-width: 100%;
    }

    .hero-section {
        height: auto;
        padding: 6rem 0 3rem;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-text h2 {
        font-size: 1.25rem;
    }

    .brands-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .brand-card {
        max-width: 150px;
    }

    .project-item {
        flex-direction: column;
    }

    .project-item.reverse {
        flex-direction: column;
    }

    .project-image {
        height: 250px;
    }

    .video-container {
        grid-template-columns: 1fr;
    }
    
}

@media screen and (max-width: 768px) {
    .hero-section{
      height: 60vh;
    }
    .container {
        max-width: 540px;
    }
 

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .why-us-item {
        flex: 1 1 100%;
    }

    .status-grid {
        gap: 30px;
    }

    .status-number {
        font-size: 32px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-col {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .newsletter-form {
        justify-content: center;
    }
}


@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .hero-section {
        padding: 60px 5% 30px;
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .card-container,
    .equity-grid,
    .income-grid,
    .insurance-grid,
    .product-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 25px;
         max-width: 540px;
    }

    .card,
    .equity-card,
    .income-card,
    .insurance-card,
    .product-card {
        padding: 20px;
    }

     .card-content h2,
     .equity-card h3,
     .income-card h3,
     .insurance-card h3,
     .product-card h3 {
        font-size: 18px;
     }

     .card-content p,
     .equity-card p,
     .income-card p,
     .insurance-card p,
     .product-card p {
        font-size: 14px;
     }

    .internship-container {
        flex-direction: column;
        margin: 30px auto;
    }

    .tab-sidebar {
        flex: none;
        width: 100%;
    }

    .tab-buttons li {
        padding: 15px;
    }

    .tab-main {
        flex: auto;
    }

    .tab-image img {
        height: 250px;
    }

    .contact-container {
        padding: 30px 15px;
        max-width: 400px;
    }

    .contact-container h2 {
        font-size: 24px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .footer-col {
        flex: 1 1 100%;
        margin: 15px 0;
    }

    .footer-socials a {
        margin: 8px 5px 0;
    }

    .newsletter-form {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .hero-section {
        padding: 40px 5% 20px;
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .card-container,
    .equity-grid,
    .income-grid,
    .insurance-grid,
    .product-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         max-width: 100%;
         padding: 0 15px;
    }

    .card,
    .equity-card,
    .income-card,
    .insurance-card,
    .product-card {
        padding: 18px;
    }

     .card-content h2,
     .equity-card h3,
     .income-card h3,
     .insurance-card h3,
     .product-card h3 {
        font-size: 16px;
     }

     .card-content p,
     .equity-card p,
     .income-card p,
     .insurance-card p,
     .product-card p {
        font-size: 13px;
     }

    .tab-buttons li {
        padding: 12px;
    }

    .tab-image img {
        height: 200px;
    }

    .contact-container {
        padding: 25px 10px;
        max-width: 300px;
    }

    .contact-container h2 {
        font-size: 20px;
    }

    .contact-btn {
        padding: 10px 20px;
    }

    .footer-container {
        padding: 0 15px;
    }
}

/* Hover effects for touch devices */
@media (hover: none) {
    .card:hover,
    .equity-card:hover,
    .income-card:hover,
    .insurance-card:hover,
    .product-card:hover,
    .contact-btn:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}


/*contact us button footer*/
.btn {
    padding: 10px 20px;
    background-color: rgb(231, 76, 60);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
.btn:hover {
    background-color: rgb(241, 93, 77);
}

@media (min-width: 1370px) {
  .hero-section{
    height:60vh;
  }

}