/* ===== THEME VARIABLES (STEP 1) ===== */
:root {
  --primary-color: #0B2C3D;     /* Deep Navy Blue */
  --secondary-color: #1F4E79;   /* Steel Blue */
  --accent-color: #C9A24D;      /* Gold */
  --bg-light: #F8FAFC;          /* Light background */
  --text-dark: #1F2937;         /* Main text */
  --border-color: #E5E7EB;      /* Borders */
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ===== STICKY FOOTER LAYOUT ===== */

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/* Main content grows to fill space */
.page-content {
  flex: 1;
}


/* ===== GLOBAL STYLES (STEP 2) ===== */
body {
  font-family: 'Inter', 'Open Sans', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: var(--accent-color);
}

h1, h2, h3, h4 {
  color: var(--primary-color);
  font-weight: 600;
}
.section-underline {
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 10px 0 40px;
  border-radius: 2px;
}
.gold-text {
  color: var(--accent-color);
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(201,162,77,0.4);
}
/* ===== SECTION HEADERS (GLOBAL) ===== */

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b2c3d;
}

.section-header h2 span {
  color: var(--primary-color); /* your theme color */
}

.section-underline {
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
  border-radius: 2px;
}


/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 40px;
}

/* ===== HEADER (STEP 3) ===== */
/* ===== HEADER ===== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

/* container */
.navbar-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:90%;
  max-width:1200px;
  margin:auto;
  padding:10px 0;
}

/* LOGO LEFT */
.logo-wrapper{
  display:flex;
  align-items:center;
}

.logo-wrapper img{
  height:92px;
  width:auto;
  background:#fff;
  border-radius:50%;
  padding:4px;
}

/* NAVIGATION PERFECT CENTER */
.nav-links{
  position:absolute;
  left:50%;
  transform:translateX(-50%);

  display:flex;
  gap:32px;
  list-style:none;
  align-items:center;
}

/* nav links */
.nav-links a{
  position:relative;
  font-size:15px;
  font-weight:600;
  color:var(--primary-color);
  letter-spacing:0.2px;
  padding-bottom:6px;
}
/* PREVENT NAVBAR TEXT WRAPPING */
.nav-links li{
    white-space: nowrap;
}

/* keep words in one line */
.nav-links a{
    white-space: nowrap;
}

/* reduce spacing slightly */
.nav-links{
    gap:24px;
}

/* ===== NAVBAR HOVER ANIMATION ===== */

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;

  width:0%;
  height:2px;

  background:var(--accent-color);
  transition:width 0.3s ease;
}

.nav-links a:hover::after{
  width:100%;
}
/* ===== BIG LOGO ONLY (PREMIUM LOOK) ===== */

.logo-wrapper {
  margin-left: 30px;          /* moves logo slightly right */
  display: flex;
  align-items: center;
}

.logo-wrapper img {
  height: 92px;               /* BIG & CONFIDENT */
  width: auto;
  object-fit: contain;
   background: #ffffff;
    border-radius: 50%;
    padding: 4px;
}

/* ===== NAVIGATION CLEAN SPACING ===== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;          /* spacing like reference site */
  padding: 0;
  margin: 0;
}

.nav-links li {
  list-style: none;  /* removes bullets */
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;        /* ⬅️ increased weight */
  color: var(--primary-color);
  letter-spacing: 0.2px;  /* subtle, professional */
}

.navbar-inner {
  width: 95%;
  max-width: 1350px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-links a:hover {
  color: var(--accent-color);
}

.nav-menu{
    flex:1;
    display:flex;
    justify-content:center;
}
.nav-menu ul{
    display:flex;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}
.dropdown-toggle{
display:flex;
align-items:center;
gap:5px;
}
/* ===== FOOTER (STEP 4) ===== */
footer {
  background-color: var(--primary-color);
  color: #ffffff;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #ffffff;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #d1d5db;
}

.footer-col a {
  color: #d1d5db;
}

.footer-col a:hover {
  color: var(--accent-color);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  text-align: center;
  padding: 15px;
  font-size: 12px;
  background-color: #081F2B;
  color: #cbd5e1;
}
/* ===== HERO SECTION ===== */

.hero {
  position: relative;
  height: 85vh;
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 44, 61, 0.75);
}

/* Hero text */
.hero-content {
  position: relative;
  color: #ffffff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 46px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e5e7eb;
}

/* Hero CTA button */
.hero-btn {
  background-color: var(--accent-color);
  color: #000;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
}

.hero-btn:hover {
  background-color: #b8923f;
}
/* ===== HERO SLIDER ===== */

.hero-slider {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 44, 61, 0.75);
  pointer-events: none;
}

.hero-content {
  position: relative;
  color: #ffffff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 46px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e5e7eb;
}

.hero-btn {
  background-color: var(--accent-color);
  color: #000;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
}

.hero-btn:hover {
  background-color: #b8923f;
}

.slide {
  z-index: 1;
}

.overlay {
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  z-index: 3;
  position: relative;
}

/* ===== HERO SLIDER ARROWS ===== */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: #ffffff;
  font-size: 32px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.45);
}

.slider-arrow.left {
  left: 30px;
}

.slider-arrow.right {
  right: 30px;
}
/* ===============================
   WELCOME SECTION (PREMIUM)
   =============================== */

.welcome-section {
  padding: 100px 0;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f8fafc 100%
  );
}

.welcome-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Headline */
.welcome-headline {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 28px;
  line-height: 1.3;
}

.welcome-headline span {
  color: var(--accent-color);
}

/* Intro */
.welcome-intro {
  font-size: 17px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 36px;
}

/* Divider */
.welcome-divider {
  width: 70px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 0 auto 28px;
  border-radius: 2px;
  opacity: 0.85;
}

/* Logo */
.welcome-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.welcome-logo img {
  height: 90px;
  width: auto;
  opacity: 0.9;
}

/* Sub-headline */
.welcome-subheadline {
  font-size: 16px;
  font-style: italic;
  color: #374151;
  margin-bottom: 42px;
}

.welcome-subheadline span {
  color: var(--primary-color);
  font-weight: 500;
}

/* CTA */
.welcome-cta {
  display: flex;
  justify-content: center;
}

.welcome-btn {
  padding: 15px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  background-color: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.welcome-btn:hover {
  background-color: var(--accent-color);
  color: #000;
}

/* ===============================
   FADE-UP ANIMATION
   =============================== */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-headline {
    font-size: 28px;
  }

  .welcome-logo img {
    height: 70px;
  }
}


/* ===============================
   OUR PRODUCTS SECTION
   =============================== */

.products-section {
  padding: 90px 0;
  background-color: #f8fafc;
  overflow: hidden;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-color);
}

.section-header h2 span {
  color: var(--secondary-color);
}

.section-underline {
  display: block;
  width: 64px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ---------- Carousel Layout ---------- */
.products-carousel {
  position: relative;
}

.products-track {
  display: flex;
  gap: 60px;
  align-items: center;
  will-change: transform;
  transition: transform 0.5s ease;
}

/* ---------- Product Card ---------- */
.product-item {
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  color: var(--primary-color);
  cursor: pointer;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

/* ---------- Image Frame (Premium Look) ---------- */
.product-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  background: #eef2f7;
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Image hover */
.product-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

/* ---------- Title ---------- */
.product-item h3 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- Hover Underline ---------- */
.hover-line {
  display: block;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  margin: 10px auto 0;
  transition: width 0.35s ease;
  border-radius: 2px;
}

.product-item:hover .hover-line {
  width: 52px;
}

/* ---------- Arrows ---------- */
.product-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: #0b2c3d;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  z-index: 10;
  transition: background 0.3s ease, color 0.3s ease;
}

.product-arrow.left {
  left: -18px;
}

.product-arrow.right {
  right: -18px;
}

.product-arrow:hover {
  background-color: var(--accent-color);
  color: #000;
}

/* ---------- Fade-in Animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-item {
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .product-arrow {
    display: none;
  }

  .products-track {
    gap: 32px;
  }

  .product-item {
    min-width: 240px;
  }
}



/* ===============================
   WHY CHOOSE US SECTION
   =============================== */

.why-choose-section {
  padding: 90px 0;
  background-color: #f8fafc;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.why-card {
  background: #ffffff;
  padding: 42px 30px 48px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Emoji Icon */
.why-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

/* Title */
.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* Text */
.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* Hover Accent Line */
.why-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 2px;
}

.why-card:hover .why-accent {
  width: 60px;
  left: calc(50% - 30px);
}

/* ===============================
   STAGGERED FADE-IN ANIMATION
   =============================== */

.fade-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show .fade-card {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SIP CALCULATOR (REFERENCE STYLE) ===== */

.sip-new {
  padding: 90px 0;
  background: #ffffff;
}

.sip-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.sip-title span {
  color: var(--secondary-color);
}

.sip-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #e6f4fa;
  padding: 25px;
  border-radius: 6px;
  margin-bottom: 25px;
  gap: 30px;
}

.control label {
  font-size: 14px;
  color: #374151;
  display: block;
  margin-bottom: 6px;
}

.control input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--primary-color);
  background: transparent;
  font-size: 20px;
  padding: 6px 0;
  outline: none;
  font-weight: 600;
}

.sip-chart-box {
  background: #ffffff;
  padding: 30px;
}

#sipLineChart {
  max-height: 380px;
}

/* ===== SIP RESULT BOX (REFERENCE STYLE) ===== */

.sip-result-box {
  background: #ffffff;
  padding: 40px;
  margin-top: 30px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Chart spacing */
.sip-chart-box {
  padding: 10px 0 30px;
}

#sipLineChart {
  max-height: 380px;
}

/* ===== SIP CALCULATOR OUTER BOX ===== */

.sip-new {
  padding: 90px 0;
  background: #f8fafc; /* light page background */
}

/* ===== SIP RESULT BOX (REFERENCE STYLE) ===== */

.sip-result-box {
  background: #ffffff;
  padding: 40px;
  margin-top: 30px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Chart spacing */
.sip-chart-box {
  padding: 10px 0 30px;
}

#sipLineChart {
  max-height: 380px;
}

/* ===== LATEST BLOG SECTION ===== */

.latest-blog-section {
  padding: 90px 0;
  background-color: #f8fafc;
}

.blog-title {
  text-align: center;
  font-size: 34px;
  color: var(--primary-color);
}

.blog-title span {
  color: var(--secondary-color);
}

.blog-underline {
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 10px auto 50px;
  border-radius: 2px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* Image */
.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 220px;        /* FIXED HEIGHT */
  object-fit: cover;   /* crop nicely */
  border-radius: 12px 12px 0 0;
}


/* Date Badge */
.blog-date {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--secondary-color);
  color: #ffffff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 3px;
}

/* Content */
.blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.blog-content h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--primary-color);
  min-height: 52px;
}

.blog-content p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.blog-card-content {
  flex: 1; /* pushes button down */
  display: flex;
  flex-direction: column;
}

.blog-card-content p {
  margin-bottom: auto; /* creates equal spacing */
}

.blog-card-content .btn {
  align-self: flex-start;
}
/* Button */
.blog-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--secondary-color);
  color: #ffffff;
  font-size: 14px;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: 15px;
}

.blog-btn:hover {
  opacity: 0.9;
}
.blog-carousel {
  overflow: hidden;
  position: relative
  width: 100%;
}

.blog-track {
  display: flex;
  gap: 30px;
  animation: blogScroll 20s linear infinite;
  align-items: stretch;
  width: max-content;
}

.blog-card {
  min-width: 360px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
}
/* Individual slide */
.blog-slide {
  flex: 0 0 360px;
  display: flex;
}

/* Pause on hover */
.blog-carousel:hover .blog-track {
  animation-play-state: paused;
}

@keyframes blogScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-60%);
  }
}
/* Smooth infinite animation */
@keyframes scrollBlogs {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonials-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.testimonial-title {
  text-align: center;
  font-size: 34px;
  color: var(--primary-color);
}

.testimonial-underline {
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 10px auto 50px;
  border-radius: 2px;
}

/* Grid */
/* TESTIMONIAL SLIDER */

.testimonial-carousel{
    overflow:hidden;
    width:100%;
    position:relative;
}

.testimonial-track{
    display:flex;
    gap:30px;
    align-items:stretch;
    animation:testimonialScroll 25s linear infinite;
}

/* FIXED CARD SIZE */
.testimonial-card{
    flex:0 0 350px;   /* fixed width */
    max-width:350px;

    background:#f8fafc;
    padding:30px;

    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    text-align:center;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    min-height:260px; /* keeps equal height */
}

/* pause animation on hover */
.testimonial-carousel:hover .testimonial-track{
animation-play-state:paused;
}

@keyframes testimonialScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* Card */
.testimonial-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  text-align: center;
}

/* Stars */
.stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 15px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  min-height:70px
  margin-bottom: 20px;
  font-style: italic;
}

/* Name */
.testimonial-card h4 {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 4px;
}

/* Role */
.testimonial-card span {
  font-size: 13px;
  color: #6b7280;
}
/* Testimonial Image */
.testimonial-img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    object-position: top;
    margin:0 auto 12px;
    border:3px solid var(--secondary-color);
}
/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0b2c3d; /* theme navy */
    min-width: 230px;
    border-radius: 6px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #134b63;
}

/* Hover open */
.dropdown:hover .dropdown-menu {
    display: block;
}
.blog-content p{
    font-size:14px;
    color:#555;
    line-height:1.5;

    display:-webkit-box;
    -webkit-line-clamp:3;   /* number of lines */
    -webkit-box-orient:vertical;

    overflow:hidden;
}
.blog-content p{
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
}
.blog-content{
    padding:18px;
    min-height:140px;
}
