body {
  /* font-family: "Roboto Condensed", sans-serif; */
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  box-sizing: border-box;
  /* letter-spacing: 0.35px; */
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

p,
h1,
h2,
h3,
h4,
h5,
ul{
  margin: 0;
  padding: 0;
}

.top-bar {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info i {
  margin-right: 5px;
}

.main-header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: auto;
  height: 60px;
}

.brand-name {
  font-size: 36px;
  font-weight: 700;
  color: #c8161d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px;
  display: block;
  transition: color 0.3s ease;
}

.menu li:hover > a {
  color: #c8161d;
}

.menu .btn-contact{
  color: #fff !important;
  font-size: 14px;
  background-color: #c8161d;
  padding: 10px 18px;
  border-radius: 24px;
  transition: all;
  transition-duration: 0.5s;
}

.menu .btn-contact:hover{
  background-color: #000;
  color: #fff;
}

/* Dropdown Styles */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.445);
  border-radius: 12px;
  z-index: 99;
}

.menu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  border-bottom: 1px solid #eee;
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu li a{
  font-size: 14px;
  padding: 13px 16px;
}

.has-submenu .arrow {
  margin-left: 5px;
}

.has-submenu .arrow svg{
  height: 14px;
  transition: fill 0.3s ease;
}

.has-submenu:hover .arrow svg{
  fill: #c8161d;
}

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #333;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  padding: 80px 30px;
  gap: 20px;
  z-index: 999;
}

.mobile-menu a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  padding-left: 15px;
}

.mobile-menu .has-submenu:hover .mobile-submenu {
  display: flex;
}

.mobile-menu.show {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* WHATSAPP ICON */
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.whatsapp-float img{
  height: 100%;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.15) ;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}


/* FOOTER */

footer{
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
}

footer h2{
  font-size: 4em;
  text-align: center;
  line-height: 150%;
  color: #c8161d;
}

footer .copyright{
  width: 100%;
  padding: 24px 0;
  text-align: center;
  color: #fff;
  background-color: #c8161d;
}

/* BANNER NEW */

.banner-section{
  width: 100%;
  background: linear-gradient(to right, #ffffff, #e6f0ff);
  background-image: url('../img/highpan-hero-bg.png');
  background-size: cover;
  background-position: center center;
}

.banner-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  box-sizing: border-box;
}

.banner-content {
  flex: 1;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-content h1 {
  font-size: 60px;
  color: #fff;
  margin-bottom: 48px;
}

.banner-content p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
}

.banner-content .highlight{
  font-size: 60px;
  font-weight: bold;
  line-height: 100%;
}

.banner-content .highlight span{
  font-size: 18px;
  font-weight: 400;
}

.banner-content img{
  height: 44px;
  margin-top: 24px;
}

.banner-content .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #d41919;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin-top: 18px;
}

.banner-content .cta-button:hover {
  background-color: #000;
}

.banner-image {
  flex: 1;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.form-div{
  width: 350px;
  background: linear-gradient(180deg, rgb(51, 51, 51, 0.65), rgb(204, 204, 204, 0.65));
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.form-div h3 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.consultation-form select,
.consultation-form input,
.consultation-form textarea {
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  letter-spacing: 0.65px;
}

.consultation-form select:focus,
.consultation-form input:focus,
.consultation-form textarea:focus{
  outline: 1px solid #d41919;
}

.consultation-form button {
  width: 100%;
  background: #d41919;
  color: white;
  font-weight: bold;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.consultation-form button:hover {
  background: #000;
}

.form-div .secure-info {
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
  color: #000;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .banner-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .banner-content {
    padding-right: 0;
    text-align: center;
  }

  .banner-image {
    text-align: center;
    margin-top: 30px;
  }
}

/* Banner Section */
/* .banner-section {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-bg-overlay{
  background-color: transparent;
  background-image: linear-gradient(125deg, #8f8f8f 48%, rgba(53, 53, 66, 0.52) 40%);
  opacity: 0.93;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.banner-content{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.banner-content h1 {
  font-size: 4em;
  color: #fff;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: serif;
} */

/* Buttons */
.banner-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.btn {
  padding: 15px 30px;
  font-weight: bold;
  letter-spacing: 2px;
  border: 3px solid transparent;
  text-decoration: none;
  font-size: 16px;
}

.btn-green {
  background-color: #006b35;
  border-color: #fff;
  color: #fff;
}

.btn-green:hover {
  background-color: #004f26;
}

.btn-red {
  background-color: #d41919;
  border: 3px solid #0070c0;
  color: #fff;
}

.btn-red:hover {
  background-color: #a91515;
}

/* Consultation Bar */
.consultation-bar {
  display: none;
  text-align: center;
  padding: 20px 0;
  position: relative;
  z-index: 3;
}

.consultation-btn {
  display: inline-block;
  background-color: #004f26;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
}

.consultation-btn:hover {
  background-color: #003e1e;
}

/* BUSINESS SETUP */
.business-setup{
  margin-top: 50px;
  gap: 56px;
}

.business-setup .img{
  min-width: 50%;
}

.business-setup .img img{
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
}

.business-setup .content-part{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.business-setup .content-part h2{
  color: #c8161d;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 0px;
  word-spacing: 0em;
}

.business-setup .content-part h3{
  font-size: 1.5em;
  color: #484848;
}

.business-setup .content-part p{
  color: #000;
  font-size: 18px;
  line-height: 150%;
}

.business-setup .btn-contact{
  display: inline-block;
  align-self: flex-start;
  margin-top: 24px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  background-color: #c8161d;
  padding: 14px 24px;
  border-radius: 24px;
  transition-duration: 0.3s;
}

.business-setup .btn-contact:hover{
  background-color: #000;
}

/* PRICING SETION */

.pricing-section{
  width: 100%;
  padding: 64px 0;
  gap: 24px;
  background-color: #333;
}

.section-head{
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-section .section-head h2{
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
  color: #fff;
  text-align: center;
}

.pricing-section .section-head p{
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #fff;
  text-align: center;
}

.pricing-section .single-box{
  flex: 1;
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 16px;
  margin-left: 2%;
  padding: 48px 24px;
}

.pricing-section .container > *:first-child {
  margin-left:0;
}

.pricing-section .single-box .title{
  font-size: 24px;
  font-weight: 600;
  color: #077c35;
}

.pricing-section .single-box .price{
  font-size: 28px;
  font-weight: 500;
  color: #c8161d;
  margin-top: 16px;
  line-height: 100%;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-section .single-box .price span{
  font-size: 13px;
  color: #000;
  font-weight: normal;
}

.pricing-section .single-box .price img{
  height: 22px;
}

.pricing-section .single-box .benefits ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
}

.pricing-section .single-box .benefits li{
  font-size: 16px;
  line-height: normal;
  color: #0070c0;
  display: flex;
  align-items: center;
}

.pricing-section .single-box .benefits svg{
  height: 14px;
  width: 14px;
  fill: #0070c0;
  margin-right: 16px;
}

.pricing-section .single-box a{
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  background-color: #c8161d;
  padding: 14px 24px;
  border-radius: 24px;
  transition-duration: 0.3s;
}

.pricing-section .single-box a:hover{
  background-color: #000;
}

/* CLIENT REVIEWS */

.testimonial{
  width: 100%;
  padding: 64px 0;
}

.testimonial .section-head h2{
   font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
}

.testimonial .section-head p{
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
}

.testimonial .slider {
  max-width: calc( 100% - 60px );
  margin: 0 auto;
}

.testimonial .slider .slide {
  width: unset !important;
  display: block !important;
  background: #fff;
  padding: 16px;
}

.slick-prev,
.slick-next{
  height: 30px !important;
  width: 30px !important;
}

.slick-prev:before,
.slick-next:before {
  color: black !important;
  font-size: 30px !important;
}

.slick-prev{
  left: -30px !important;
}

.slick-next{
  right: -30px !important;
}

.testimonial .slide .slide-content{
  display: flex;
  box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.15), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
  border:  1px solid #ccc;
  border-radius: 8px;
  padding: 24px;
  position: relative;
  flex-direction: column;
  gap: 16px;
  min-height: 327px;
  box-sizing: border-box;
}

.slide-content .google-icon{
  position: absolute;
  top: 24px;
  right: 24px;
  height: 20px;
  width: 20px;
}

.slide-content .stars{
  display: flex;
  gap: 2px;
}

.slide-content .stars img{
  height: 17px;
  width: 17px;
}

.slide-content .head{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slide-content .head .client-name{
  font-size: 14px;
  font-weight: bold;
  color: #0070c0;
}

.slide-content .head .review-date{
  font-size: 12px;
  color: #8a8a8a;
}

.slide-content .review-text{
  line-height: 150%;
  line-height: 1.5em;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
}

.slide-content .review-text p{
  /* display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical; */
  overflow: hidden;
  max-height: 169px;
  height: auto;
  text-overflow: ellipsis;
  transition: max-height 0.3s ease;
}

.slide-content .review-text .show-more{
  font-size: 13px;
  color: #888;
  text-decoration: underline;
  margin-top: auto;
  display: none;
}

.slide-content .review-text .show-more:hover{
  cursor: pointer;
}

.slide-content .review-text p.expanded {
  max-height: unset !important;
}

.toggle-btn {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 0;
  position: absolute;
  bottom : 0;
}

/* CHANNELS */

.channels{
  width: 100%;
  padding: 64px 0;
}

.channels .section-head h2{
   font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
}

.channels .section-head p{
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
}

.channels .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.channels .grid-container .grid-box{
  border: 1px solid #ccc;
  border-radius: 16px;
  padding: 24px;
}

.channels .grid-container .grid-box img{
  height: 150px;
  width: 200px;
  object-fit: contain;
}

.for-white-logo{
  background: black;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 8px;
}

/* FAQs */

.faq-section{
  padding: 64px 0;
}

.faq-section .section-head h2{
   font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
}

.faq-section .section-head p{
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
}

.faq-list{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 980px;
  margin: auto;
  border: 1px solid #ccc;
  border-radius: 24px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  background: #fff;
  cursor: pointer;
  padding: 20px;
  font-size: 18px;
  position: relative;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-answer {
  display: none;
  background: #fafafa;
  padding: 20px;
  border-top: 1px solid #eee;
  line-height: 150%;
}

.faq-toggle-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle-icon {
  transform: translateY(-50%) rotate(180deg);
}

/* ABOUT PAGE */

.inner-page {
  background-image: url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  position: relative;
}

.inner-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.inner-page .banner-wrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0 60px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.inner-page h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

.inner-page p {
  font-size: 1.2rem;
  max-width: 600px;
}

.inner-page a.button {
  margin-top: 16px;
  display: inline-block;
  padding: 11px 28px;
  background-color: #c8161d;
  color: white;
  border: 1px solid #c8161d;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.inner-page a.button:hover {
  background-color: #000;
  border-color: #f2f2f2;
}

.for-content{
  padding: 32px 24px 64px 24px;
}

.for-content .text-content{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-content p{
  font-size: 18px;
  line-height: 150%;
}

.text-content h2{
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
  color: #c8161d;
}

.text-content h3{
  font-size: 1.5em;
  color: #484848;
}

.text-content ul,
.text-content ol{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 18px;
  line-height: 150%;
  margin: 0;
  padding: 0 20px;
}

.text-content a{
  display: inline-block;
  align-self: flex-start;
  margin-top: 24px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  background-color: #c8161d;
  padding: 14px 24px;
  border-radius: 24px;
  transition-duration: 0.3s;
}

.text-content a:hover{
  background-color: #000;
}

@media (max-width: 768px) {
  .inner-page h1 {
    font-size: 2.2rem;
  }

  .inner-page p {
    font-size: 1rem;
  }
}

/* SERVICES SECTION */

.services-section {
  max-width: 1440px;
  margin: 60px auto;
  padding: 0 20px;
}

.services-title {
  text-align: center;
  margin-bottom: 40px;
}

.services-title h2 {
  font-size: 2.5rem;
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  text-decoration: none;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 768px) {
  .services-title h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 20px;
  }
}

.content-images{
  display: flex;
  gap: 48px;
}

.content-images img{
  width: 50%;
}

/* PROCESS SECTION */
.process-section {
  background: #f8f9fb;
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  border-radius: 24px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  color: #1e1e2f;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.step {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.step img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e1e2f;
}

.step p {
  font-size: 15px;
  color: #666;
}

/* CONTACT PAGE */

/* Google Map container */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #aaa;
  aspect-ratio: 16 / 9;
  width: 90%;
  margin-top: auto;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-section{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 64px;
  margin-bottom: 64px;
}

.contact-section h2{
  color: #c8161d;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 0px;
}

.contact-container {
  display: flex;
  gap: 40px;
  margin: auto;
  width: 100%;
}

.contact-section .contact-info{
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 65%;
}

.contact-section .contact-info .single-item{
  display: flex;
  gap: 24px;
  font-size: 18px;
}

.contact-section .contact-info .single-item a{
  background-color: unset;
  color: #333;
  text-decoration: underline;
  padding: unset;
  border: unset;
  border-radius: unset;
}

.contact-section .contact-info .single-item i{
  color: #c8161d;
}

.contact-section .contact-info .single-item a:hover{
  color: #c8161d;
}

.contact-section .contact-info h2 {
  font-size: 26px;
  color: #c8161d;
  margin-bottom: 15px;
}

.contact-section .contact-info p {
  font-size: 16px;
  margin: 8px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(35% - 40px);
  border: 2px solid #aaa;
  padding: 21px;
  border-radius: 16px;
}

.contact-form label {
  margin-top: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form button {
  background: #c8161d;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #a21218;
}

.contact-form .btn-submit{
  margin-top: auto;
}

.contact-map {
  max-width: 1100px;
  margin: 40px auto 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}


/* FOR BLOGS */
.blogs{
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 0;
  width: 100%;
}

.blogs h2{
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
  color: #c8161d;
}

.blogs h3{
  font-size: 1.5em;
  color: #484848;
}

.blogs ul,
.blogs ol{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 18px;
  line-height: 150%;
  margin: 0;
  padding: 0 20px;
}

.blogs .blog-cards{
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 30px;
}

.blogs .blog-cards .single-card{
  background: #fff; 
  border-radius: 10px; 
  overflow: hidden; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card-inner{
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-inner .blog-title{
  text-decoration: none;
  color: #333;
  font-size: 1.2em;
  font-weight: 700;
  display: -webkit-box; 
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; 
  overflow: hidden;
}

.card-inner .blog-meta{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card-inner .blog-meta .meta{
  width: calc( 50% - 8px );
  color: #777;
  font-size: 14px;
}

.card-inner .blog-meta .meta a{
  color: #c8161d;
  text-decoration: none;
}

.blog-container{
  width: clamp(700px, 75%, 1100px);
  padding-top: 24px;
  margin: 0 auto;
}

.blog-container h1{
  font-size: 36px;
  color: #c8161d;
  line-height: 150%;
  margin-bottom: 24px;
}

.blog-container .blog-content{
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #333;
  line-height: 150%;
}

.single-blog-meta{
  color: #777;
  margin-bottom: 24px;
}

.single-blog-meta a,
.single-blog-meta span{
  color: #c8161d;
}

.blog-container .blog-content ul,
.blog-container .blog-content ol{
  padding-left: 20px;
  line-height: 175%;
}

.blog-container .blog-content h2,
.blog-container .blog-content h2 strong,
.blog-container .blog-content h3,
.blog-container .blog-content h3 strong{
  font-weight: 700;
}

.blog-container .blog-content a{
  text-decoration: underline;
  color: #c8161d;
}

.blog-container .contact-wrapper{
  display: flex;
  justify-content: center;
}

.blog-container .blog-contact {
  margin-top: 48px;
  margin-bottom: 24px;
  display: inline-block;
  padding: 18px 36px;
  background-color: #c8161d;
  color: white;
  border: 1px solid #c8161d;
  text-decoration: none;
  font-size: 1.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.blog-container .blog-contact:hover {
  background-color: #000;
  border-color: #777;
}